runtime.evacDst.i (field)
17 uses
runtime (current package)
map.go#L1164: i int // key/elem index into b
map.go#L1241: if dst.i == bucketCnt {
map.go#L1243: dst.i = 0
map.go#L1247: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map.go#L1258: dst.i++
map_fast32.go#L422: if dst.i == bucketCnt {
map_fast32.go#L424: dst.i = 0
map_fast32.go#L428: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_fast32.go#L439: dst.i++
map_fast64.go#L424: if dst.i == bucketCnt {
map_fast64.go#L426: dst.i = 0
map_fast64.go#L430: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_fast64.go#L447: dst.i++
map_faststr.go#L450: if dst.i == bucketCnt {
map_faststr.go#L452: dst.i = 0
map_faststr.go#L456: dst.b.tophash[dst.i&(bucketCnt-1)] = top // mask dst.i as an optimization, to avoid a bounds check
map_faststr.go#L462: dst.i++
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |